@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
       
html, body{
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.arm-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 100px;
    background: linear-gradient(145deg, #4F46E5, #7C3AED);
    border-radius: 25px 25px 0 0;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.arm-segment {
    position: absolute;
    width: 80px;
    height: 150px;
    background: linear-gradient(145deg, #6366F1, #8B5CF6);
    border-radius: 12px;
    transform-origin: bottom center;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.arm-1 {
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
}

.arm-2 {
    bottom: 250px;
    left: 50%;
    transform: translateX(-50%) rotate(10deg);
}

.claw-base {
    position: absolute;
    bottom: 400px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 70px;
    background: linear-gradient(145deg, #818CF8, #A78BFA);
    border-radius: 0 0 20px 20px;
    transform-origin: bottom center;
    box-shadow: 0 5px 15px rgba(129, 140, 248, 0.3);
    transition: all 0.3s ease;
}

.claw-finger {
    position: absolute;
    width: 15px;
    height: 60px;
    background: linear-gradient(145deg, #A5B4FC, #C4B5FD);
    border-radius: 8px;
    transform-origin: bottom center;
    box-shadow: 0 3px 10px rgba(165, 180, 252, 0.3);
    transition: all 0.3s ease;
}

.claw-finger-1 { 
    bottom: 470px;
    left: 42%;
    transform: rotate(-20deg);
}

.claw-finger-2 { 
    bottom: 470px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
}

.claw-finger-3 { 
    bottom: 470px;
    left: 58%;
    transform: rotate(20deg);
}

.led-light {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #10B981;
    box-shadow: 0 0 10px 2px #10B981;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

.led-1 { top: 20px; left: 30px; }
.led-2 { top: 20px; right: 30px; }
.led-3 { top: 60px; left: 50%; transform: translateX(-50%); }

@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.9; }
    100% { opacity: 0.3; }
}

.countdown-box {
    background: linear-gradient(135deg, #026BFB 0%, #FB5A02 100%);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.tech-card {
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4F46E5 0%, #111827 100%);
    color: white;
}

.input-field {
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
}

.input-field:focus {
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.btn-primary {
    background: #026BFB 0%;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #02357d 0%;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.gradient-text {
    background:linear-gradient(135deg, #026BFB 0%, #FB5A02 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.interactive-section {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.interactive-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fundoCardPadrao{
    background: linear-gradient(180deg, #050148 0%, #111827 100%);
}
